type net/http.http2Frame
20 uses
net/http (current package)
h2_bundle.go#L1694: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
h2_bundle.go#L1829: type http2Frame interface {
h2_bundle.go#L1841: lastFrame http2Frame
h2_bundle.go#L2073: func (fr *http2Framer) ReadFrame() (http2Frame, error) {
h2_bundle.go#L2126: func (fr *http2Framer) checkFrameOrder(f http2Frame) error {
h2_bundle.go#L2183: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2302: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2443: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2485: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2527: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2538: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2606: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
h2_bundle.go#L2748: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2797: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2829: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2880: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
h2_bundle.go#L3110: func (fr *http2Framer) readMetaFrame(hf *http2HeadersFrame) (http2Frame, error) {
h2_bundle.go#L3233: func http2summarizeFrame(f http2Frame) string {
h2_bundle.go#L4787: f http2Frame // valid until readMore is called
h2_bundle.go#L5540: func (sc *http2serverConn) processFrame(f http2Frame) error {